home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_demo-version / egs_devels / c-include / egb / gbscrollbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-06  |  1.5 KB  |  54 lines

  1. #ifndef EGS_EGB_GBSCROLLBOX_H
  2. #define EGS_EGB_GBSCROLLBOX_H
  3.  
  4. /***************************************************************************\
  5. *
  6. *  $
  7. *  $ FILE     : gbscrollbox.h
  8. *  $ VERSION  : 1
  9. *  $ REVISION : 4
  10. *  $ DATE     : 07-Feb-93 20:59
  11. *  $
  12. *  $ Author   : mvk
  13. *  $
  14. *
  15. *****************************************************************************
  16. *                                                                           *
  17. * (c) Copyright 1990/93 VIONA Development                                   *
  18. *     All Rights Reserved                                                   *
  19. *                                                                           *
  20. \***************************************************************************/
  21.  
  22. #ifndef         EXEC_TYPES_H
  23. #include        <exec/types.h>
  24. #endif
  25. #ifndef         EGS_EGSINTUI_H
  26. #include        <egs/egsintui.h>
  27. #endif
  28. #ifndef         EGS_EGSGADBOX_H
  29. #include        <egs/egsgadbox.h>
  30. #endif
  31. #ifndef         EGS_EGSGFX_H
  32. #include        <egs/egsgfx.h>
  33. #endif
  34.  
  35. typedef struct EGB_ScrollGadgetStruct *EGB_ScrollGadPtr;
  36.  
  37. struct EGB_ScrollGadgetStruct {
  38.      struct EI_MasterGadget Master;
  39.      WORD                   PixWidth, PixHeight, Width, Height;
  40.      EB_SPropGadPtr         Scroller;
  41.      struct List            List;
  42.      UWORD                  Pad1;
  43.      struct Node           *ActText, *TopText;
  44.      EG_EFontPtr            EFontPtr;
  45.      EI_GadgetPtr           Selects;
  46.      UBYTE                  Sort;
  47.      UBYTE                  Pad0;
  48.      UWORD                  Pad1;
  49.      EI_StringGadPtr        String;
  50. };
  51.  
  52. #endif /* EGS_EGB_GBSCROLLBOX_H */
  53.  
  54.